home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / wfc007.000 / test / tevntlog.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-08  |  337 b   |  16 lines

  1. #include "test.h"
  2. #pragma hdrstop
  3.  
  4. void test_CEventLog( void )
  5. {
  6.    CEventLog log( "Dodah" );
  7.  
  8.    LPCTSTR string_array[ 1 ];
  9.  
  10.    string_array[ 0 ] = "Hello World";
  11.  
  12.    log.Report( CEventLog::eventInformation, 0, 0, 1, string_array );
  13.    log.ReportInformation( "ReportInformation" );
  14.    log.ReportError( "ReportError" );
  15. }
  16.